home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 33
/
Volume 33 - JOGO DISK .iso
/
Games
/
snowboard.swf
/
scripts
/
frame_1
/
PlaceObject3_85_10
/
CLIPACTIONRECORD onClipEvent(enterFrame).as
next >
Wrap
Text File
|
2007-01-15
|
452b
|
25 lines
onClipEvent(enterFrame){
_X = _X + xspeed2;
_Y = _Y + yspeed2;
if(!dragging)
{
_X = _X + xspeed / 9;
_Y = _Y + yspeed / 9.5;
xspeed /= friction / 2;
yspeed /= friction / 2;
}
else
{
xspeed2 -= oldx;
yspeed2 -= oldy;
oldx = _X;
oldy = _Y;
}
this.swapDepths(100);
if(var1 == 1)
{
_X = _root._xmouse - xx;
_Y = _root._ymouse - yy;
}
}